.last-posts, .posts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.post-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem;
    background-color: white;
}

.pagination-bar {
    display: flex;
    max-width: 80vw;
    justify-content: center;
    margin: 1rem auto;
    align-items: center;
    background-color: white;
    padding: 1rem 0.2rem;
    border-radius: 1rem;
}

.page-navigation {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.3em 0.3em;
    border-radius: 0.5px;
    background-color: #FF8C42;
}

.page-navigation:hover {
    background-color: grey;
}

.post-link {
    text-decoration: none;
    color: inherit;
}

.post-link:hover {
    text-decoration: underline;
}